home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / genprof < prev    next >
Text File  |  2009-11-03  |  5KB  |  188 lines

  1. #!/usr/bin/perl
  2. #
  3. # $Id: genprof 1015 2007-11-06 18:08:24Z dominic_r $
  4. #
  5. # ----------------------------------------------------------------------
  6. #    Copyright (c) 2005 Novell, Inc. All Rights Reserved.
  7. #
  8. #    This program is free software; you can redistribute it and/or
  9. #    modify it under the terms of version 2 of the GNU General Public
  10. #    License as published by the Free Software Foundation.
  11. #
  12. #    This program is distributed in the hope that it will be useful,
  13. #    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. #    GNU General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with this program; if not, contact Novell, Inc.
  19. #
  20. #    To contact Novell about this file by physical or electronic mail,
  21. #    you may find current contact information at www.novell.com.
  22. # ----------------------------------------------------------------------
  23.  
  24. use strict;
  25. use Getopt::Long;
  26.  
  27. use Immunix::SubDomain;
  28.  
  29. use Data::Dumper;
  30.  
  31. use Locale::gettext;
  32. use POSIX;
  33.  
  34. # force $PATH to be sane
  35. $ENV{PATH} = "/bin:/sbin:/usr/bin:/usr/sbin";
  36.  
  37. # initialize the local poo
  38. setlocale(LC_MESSAGES, "");
  39. textdomain("apparmor-utils");
  40.  
  41. # options variables
  42. my $help = '';
  43.  
  44. GetOptions(
  45.     'file|f=s' => \$filename,
  46.     'dir|d=s'  => \$profiledir,
  47.     'help|h'   => \$help,
  48. );
  49.  
  50. # tell 'em how to use it...
  51. &usage && exit if $help;
  52.  
  53. my $sd_mountpoint = check_for_subdomain();
  54. unless ($sd_mountpoint) {
  55.     fatal_error(gettext("SubDomain does not appear to be started.  Please enable SubDomain and try again."));
  56. }
  57.  
  58. # let's convert it to full path...
  59. $profiledir = get_full_path($profiledir);
  60.  
  61. unless (-d $profiledir) {
  62.     fatal_error "Can't find subdomain profiles in $profiledir.";
  63. }
  64.  
  65. # what are we profiling?
  66. my $profiling = shift;
  67.  
  68. unless ($profiling) {
  69.     $profiling = UI_GetString(gettext("Please enter the program to profile: "), "")
  70.       || exit 0;
  71. }
  72.  
  73. my $fqdbin;
  74. if (-e $profiling) {
  75.     $fqdbin = get_full_path($profiling);
  76.     chomp($fqdbin);
  77. } else {
  78.     if ($profiling !~ /\//) {
  79.         my $which = which($profiling);
  80.         if ($which) {
  81.             $fqdbin = get_full_path($which);
  82.         }
  83.     }
  84. }
  85.  
  86. unless ($fqdbin && -e $fqdbin) {
  87.     if ($profiling =~ /^[^\/]+$/) {
  88.         fatal_error(sprintf(gettext('Can\'t find %s in the system path list.  If the name of the application is correct, please run \'which %s\' in the other window in order to find the fully-qualified path.'), $profiling, $profiling));
  89.     } else {
  90.         fatal_error(sprintf(gettext('%s does not exist, please double-check the path.'), $profiling));
  91.     }
  92. }
  93.  
  94.  
  95. # make sure that the app they're requesting to profile is not marked as
  96. # not allowed to have it's own profile
  97. check_qualifiers($fqdbin);
  98.  
  99. # load all the include files
  100. loadincludes();
  101.  
  102. my $profilefilename = getprofilefilename($fqdbin);
  103. if (-e $profilefilename) {
  104.     $helpers{$fqdbin} = getprofileflags($profilefilename) || "enforce";
  105. } else {
  106.     autodep($fqdbin);
  107.     $helpers{$fqdbin} = "enforce";
  108. }
  109.  
  110. if ($helpers{$fqdbin} eq "enforce") {
  111.     complain($fqdbin);
  112.     reload($fqdbin);
  113. }
  114.  
  115. UI_Important(gettext("Please start the application to be profiled in \nanother window and exercise its functionality now.\n\nOnce completed, select the \"Scan\" button below in \norder to scan the system logs for AppArmor events.  \n\nFor each AppArmor event, you will be given the  \nopportunity to choose whether the access should be  \nallowed or denied."));
  116.  
  117. my $syslog         = 1;
  118. my $logmark        = "";
  119. my $done_profiling = 0;
  120.  
  121. $syslog = 0 if (-e "/var/log/audit/audit.log");
  122.  
  123. while (not $done_profiling) {
  124.     if ($syslog) {
  125.         $logmark = `date | md5sum`;
  126.         chomp $logmark;
  127.         $logmark = $1 if $logmark =~ /^([0-9a-f]+)/;
  128.         system("$logger -p kern.warn 'GenProf: $logmark'");
  129.     } else {
  130.         $logmark = last_audit_entry_time();
  131.     }
  132.     eval {
  133.  
  134.         my $q = {};
  135.         $q->{headers} = [ gettext("Profiling"), $fqdbin ];
  136.         $q->{functions} = [ "CMD_SCAN", "CMD_FINISHED" ];
  137.         $q->{default} = "CMD_SCAN";
  138.  
  139.         my ($ans, $arg) = UI_PromptUser($q);
  140.  
  141.         if ($ans eq "CMD_SCAN") {
  142.  
  143.             my $lp_ret = do_logprof_pass($logmark);
  144.  
  145.             $done_profiling = 1 if $lp_ret eq "FINISHED";
  146.  
  147.         } else {
  148.  
  149.             $done_profiling = 1;
  150.  
  151.         }
  152.     };
  153.     if ($@) {
  154.         if ($@ =~ /FINISHING/) {
  155.             $done_profiling = 1;
  156.         } else {
  157.             die $@;
  158.         }
  159.     }
  160. }
  161.  
  162. for my $p (sort keys %helpers) {
  163.     if ($helpers{$p} eq "enforce") {
  164.         enforce($p);
  165.         reload($p);
  166.     }
  167. }
  168.  
  169. UI_Info(gettext("Reloaded SubDomain profiles in enforce mode."));
  170. UI_Info(sprintf(gettext('Finished generating profile for %s.'), $fqdbin));
  171. exit 0;
  172.  
  173. sub usage {
  174.     UI_Info(sprintf(gettext("usage: \%s [ -d /path/to/profiles ] [ -f /path/to/logfile ] [ program to profile ]"), $0));
  175.     exit 0;
  176. }
  177.  
  178. sub last_audit_entry_time {
  179.     local $_ = `tail -1 /var/log/audit/audit.log`;
  180.     my $logmark;
  181.     if (/^*msg\=audit\((\d+\.\d+\:\d+).*\).*$/) {
  182.         $logmark = $1;
  183.     } else {
  184.         $logmark = "";
  185.     }
  186.     return $logmark;
  187. }
  188.